import * as React from "react" import { getServerSession } from "next-auth/next" import { authOptions } from "@/app/api/auth/[...nextauth]/route" import { Shell } from "@/components/shell" import { getVendorContractReviews } from "@/lib/general-contracts/service" import { VendorGeneralContractReviewTable } from "./vendor-general-contract-review-table" import { InformationButton } from "@/components/information/information-button" import { unstable_noStore as noStore } from 'next/cache' export default async function VendorGeneralContractReviewPage() { noStore() const session = await getServerSession(authOptions) if (!session?.user?.companyId) { return (
조건검토 요청된 계약 목록을 확인하고 검토합니다.